home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_065 / prep / premac.h < prev    next >
Text File  |  1992-05-06  |  394b  |  29 lines

  1. c Some standard macros for prep.
  2.  
  3. c logical stuff
  4. : ==    .eq. ;
  5. : >=    .ge. ;
  6. : >    .gt. ;
  7. : <    .lt. ;
  8. : <=    .le. ;
  9. : !=    .ne. ;
  10. : <>    .ne. ;
  11. : !    .not. ;
  12. : |    .or. ;
  13. : &    .and. ;
  14. : TRUE    .true. ;
  15. : FALSE    .false. ;
  16. : ^    ** ;
  17.  
  18. #if DOUBLE    ; double precision defs
  19. : real        doubleprecision ;
  20. : alog        dlog ;
  21. : amax1        dmax1 ;
  22. : amin1        dmin1 ;
  23. : abs        dabs ;
  24. : sin        dsin ;
  25. : cos        dcos ;
  26. : 0.0        0.d0 ;
  27. : .e        .d;
  28. #endif
  29.